Meld is a graphical tool that lets you compare and merge files or directories. You can use it as a difftool for Git to visually inspect the changes in your Git ...
## set your difftool once: git config --global diff.tool meld ## then use git difftool -d master other_branch ## to see differences. See http://stackoverflow ...
git meld is a git command that allows you to compare and edit treeishs between revisions using meld or any other diff tool that supports directory comparison.
You can now see a diff between two branches/commits with: git difftool -d branch1 branch2 That's a lot of typing, though, so let's create a handy alias.